github.com/klauspost/compress/fse.bitWriter.nBits (field)
15 uses
github.com/klauspost/compress/fse (current package)
bitwriter.go#L14: nBits uint8
bitwriter.go#L30: b.bitContainer |= uint64(value&bitMask16[bits&31]) << (b.nBits & 63)
bitwriter.go#L31: b.nBits += bits
bitwriter.go#L37: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L38: b.nBits += bits
bitwriter.go#L51: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L52: b.nBits += bits
bitwriter.go#L59: v := b.nBits >> 3
bitwriter.go#L123: panic(fmt.Errorf("bits (%d) > 64", b.nBits))
bitwriter.go#L126: b.nBits &= 7
bitwriter.go#L131: if b.nBits < 32 {
bitwriter.go#L139: b.nBits -= 32
bitwriter.go#L145: nbBytes := (b.nBits + 7) >> 3
bitwriter.go#L149: b.nBits = 0
bitwriter.go#L165: b.nBits = 0
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |